/*arabic font import */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap');

/* import fonts from fonts.css file */ 
@import url(./fonts.css);


/* css variables */ 
@import url(./partials/_variables.css);

/* import global styling */ 
@import url(./partials/_global.css);

* {
    font-family: 'Cairo', sans-serif;
}

#more {display: none;}




/* start navigation */ 

.header_area .main-menu .navbar .navbar-brand{
    padding: 0 2rem 0 5rem;
}
.header_area .main-menu .navbar .navbar-brand img{
    width: 180px;
}

.header_area .main-menu .back-colr:hover {
    background: #f5c75d;
    border-radius:90px ;
    
}

.header_area .main-menu .back-colr:hover {
    background: #f5c75d;
}
.header_area .main-menu .navbar{
    padding: 1rem 20rem ;
}

.header_area .main-menu .nav-item .nav-link{
    font: normal 500 15px/2px var(--roboto);
    text-transform: uppercase;
    padding: 1.7rem;
    color: var(--nav-color);
}

.header_area .main-menu .navbar-nav .active a{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align:center;
}

.header_area .main-menu .navbar-nav a:hover{
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header_area .main-menu .nav-item .btn{
    background-color: var(--primary-color);
    color:white;
    margin-top: 20px;
    margin-right: 100px;
}

.header_area .main-menu .nav-item .btn:hover {
    background-color: var(--secondery-color);
    transition: 0.5s;
}


/* end navigation */ 

/* start banner area */
section {
    margin: 0;
    padding:300px 0;
    height: 10vh;
    justify-content: center;
    align-items: center;
    display: flex;

}
    
.banner {
    height: 400px;
    width: 100%;
}



.banner-profile-image {
    width:100% ;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-profile-image {
    
    position: relative;
    margin-top: -100px;
}

.banner-profile-image img {
    width: 250px;
}

.responsive {
    width: 100%;
    height: 200px;
  }


.banner-contnet {
    max-width: 700px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondery-color);
}



/* end banner area */

/* start about area */

.about-container {
    vertical-align: top;
    height:90vh;
    margin:0 auto;
    width: 80%;
    display: grid;
    grid-template-columns: 70% 1fr;
}
.policy-container {
    width: 100%;
    margin:40px auto;
    display: grid;
    grid-template-columns: 1fr;
}

.policy-container .about-right {
    width:80%;
    margin-left:200px;
    text-align:left;
}

.policy-container .text{
    width: 80%;
    margin-left:100px;
    color: var(--secondery-color);
}

.policy-container button {
    border:none;
    background:var(--primary-color);
    color:white;
}


.about-container .about-right {
    width:100%;
    margin:70px auto;
}

.about-container .about-left {
    margin-left:200px;
    margin:100px auto;
    
}

.about-container .title{
    width: 30%;
    margin-right:100px;
    color: var(--secondery-color);
}

.about-container .text {
    height: 100%;
    margin-right:200px;
    color: rgb(71, 71, 71);
}


.about-container .text h4{
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .about-container .title{
        width: 40%;
    }
    .about-container .text h4 {
      font-size: 20px;
    }
    .about-container .title h1 {
        font-size: 30px;
    }
    .about-container .text {
        height: 100%;
        padding: 0 10px;
    }
  }
  @media only screen and (max-width: 840px) {
    
    .about-container .text {
        height: 100%;
        padding: 0 10px;
    }
  }

/* end about area */


/* start purpose area */

/* Services Area */ 

.site-main .services-area{
    padding: 2rem 2rem;
}

.site-main .services-area .services-title{
    padding: 0 14rem;
}

.site-main .services-area .services-title h1{
    font-size: 35px;
}

.site-main > .services-area .services{
    color:var(--secondery-color);
    background: #FFFAEF;
    padding: 2rem 0;
    width: 16rem;
    margin: 5rem .5rem;
    transition: box-shadow .7s ease;
}

.site-main > .services-area .services:hover{
    box-shadow: var(--box-shadow);
}

.services-slider {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    margin:0 40px ;
}

.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}

.card{
    width: 270px;
    height: 355px;
    background-color: #fff;
    border-radius: 25px;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 5%;
    padding: 3px;
}

.image-content , .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:10px 14px;

}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay {
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    width: 100%;

}

.overlay::before,
.overlay::after{
    content:'';
    position: absolute;
    height: 40px;
    width: 40px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.name {
    font-size: 18px;
    font-weight: 500;
    color:var(--secondery-color);
}

.discription {
    font-size: 12px;
    color: var(--nav-color);
    text-align: center;
}

.swiper-navBtn {
    color:var(--secondery-color);
}




/* End Services Area */ 

/* end purpose area */



/* strat subscribe us */ 

.newsletter {
    background: #FFFAEF;
    }
    
    .newsletter .content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2; }
    .newsletter .content h6 {
        color: var(--primary-color);
    }
    .newsletter .content h2 {
    color: var(--secondery-color);
    margin-bottom: 40px; }
    .newsletter .content .form-control {
    height: 70px;
    border-color: #ffffff;
    border-radius:0;
    }
    .newsletter .content.form-control:focus {
    box-shadow: none;
    border: 2px solid var(--secondery-color);
    }
    .newsletter .content .btn {
    min-height: 70px; 
    min-width: 100px;
    border-radius:0;
    background: var(--primary-color);
    color: #fff;
    font-weight:600;
    border-radius: 5px;
    }
    .newsletter .content .btn:hover{
        background:var(--secondery-color);
    }

/* End subscribe us */ 
/* start clients us */ 


.section-header h3 {
    font-size: 36px;
    color: var(--secondery-color);
    text-align: center;
    font-weight: 500;
    position: relative;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #556877;
    width: 50%;
}

#clients {
    padding: 60px 0;
    
}
#clients .clients-wrap {
    margin-bottom: 30px;
}

#clients .client-logo {
    padding: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    height: 160px;
}

#clients img {
    transition: all 0.4s ease-in-out;
}
 



/* end clients us */ 
/* Footer Area */ 

.my-5 {
    background: #fff;
}

footer ul li {
    margin-top: 25px;
    letter-spacing: 1px;
}

footer ul li a {
    color: var(--nav-color);
}
footer ul li a:hover{
    color:black;
}

footer ul li p {
    color: var(--nav-color);
}
